home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / ubiquity / tzsetup / post-base-installer next >
Text File  |  2008-10-29  |  205b  |  11 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. . /usr/share/debconf/confmodule
  5.  
  6. db_get time/zone
  7. zone="$RET"
  8. echo "$zone" > /target/etc/timezone
  9. rm -f /target/etc/localtime
  10. cp -f /target/usr/share/zoneinfo/$zone /target/etc/localtime
  11.